42. Solutions: NOT
Solutions to NOT IN Questions
SELECT name, primary_poc, sales_rep_id FROM accounts WHERE name NOT IN ('Walmart', 'Target', 'Nordstrom');
2.
SELECT *
FROM web_events
WHERE channel NOT IN ('organic', 'adwords');
Solutions to NOT LIKE Questions
SELECT name FROM accounts WHERE name NOT LIKE 'C%';
2.
SELECT name
FROM accounts
WHERE name NOT LIKE '%one%';
SELECT name FROM accounts WHERE name NOT LIKE '%s';
Code
If you need a code on the https://github.com/udacity.